home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / lisp / viper / viper-keym.el < prev    next >
Encoding:
Text File  |  1995-08-11  |  22.2 KB  |  536 lines

  1. ;;; viper-keym.el -- Main Viper keymaps
  2. ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
  3.  
  4. ;; This file is part of GNU Emacs.
  5.  
  6. ;; GNU Emacs is free software; you can redistribute it and/or modify
  7. ;; it under the terms of the GNU General Public License as published by
  8. ;; the Free Software Foundation; either version 2, or (at your option)
  9. ;; any later version.
  10.  
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ;; GNU General Public License for more details.
  15.  
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  18. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20.  
  21. (require 'viper-util)
  22.  
  23. ;;; Variables
  24.  
  25. ;;; Keymaps
  26.  
  27. ;; Keymaps for vital things like \e and C-z.
  28. ;; Not for users
  29. (defvar vip-vi-intercept-map (make-sparse-keymap))
  30. (defvar vip-insert-intercept-map (make-sparse-keymap))
  31. (defvar vip-emacs-intercept-map (make-sparse-keymap))
  32.  
  33. ;; keymap used to zap all keymaps other than function-key-map,
  34. ;; devide-function-key-map, etc.
  35. (defvar vip-overriding-map (make-sparse-keymap))
  36.   
  37. (vip-deflocalvar vip-vi-local-user-map (make-sparse-keymap)
  38.   "Keymap for user-defined local bindings.
  39. Useful for changing bindings such as ZZ in certain major modes.
  40. For instance, in letter-mode, one may want to bind ZZ to
  41. mh-send-letter. In a newsreader such as gnus, tin, or rn, ZZ could be bound
  42. to save-buffers-kill-emacs then post article, etc.")
  43. (put 'vip-vi-local-user-map 'permanent-local t)    
  44.  
  45. (defvar vip-vi-global-user-map (make-sparse-keymap)
  46.   "Keymap for user-defined global bindings.
  47. These bindings are seen in all Viper buffers.")
  48.  
  49. (defvar vip-vi-basic-map (make-keymap)
  50.   "This is the main keymap in effect in Viper's Vi state.
  51. This map is global, shared by all buffers.")
  52.  
  53. (defvar  vip-vi-kbd-map (make-sparse-keymap)
  54.   "This keymap keeps keyboard macros defined via the :map command.")
  55.  
  56. (defvar vip-vi-diehard-map (make-sparse-keymap)
  57.   "This keymap is in use when the user asks Viper to simulate Vi very closely.
  58. This happens when vip-expert-level is 1 or 2. See vip-set-expert-level.")
  59.   
  60.  
  61. (vip-deflocalvar vip-insert-local-user-map (make-sparse-keymap)
  62.   "Auxiliary map for per-buffer user-defined keybindings in Insert state.")
  63. (put 'vip-insert-local-user-map 'permanent-local t)    
  64.  
  65. (defvar vip-insert-global-user-map (make-sparse-keymap)
  66.   "Auxiliary map for global user-defined bindings in Insert state.")
  67.  
  68. (defvar vip-insert-basic-map (make-sparse-keymap)
  69.   "The basic insert-mode keymap.")
  70.  
  71. (defvar vip-insert-diehard-map (make-keymap)
  72.   "Map used when user wants vi-style keys in insert mode.
  73. Most of the Emacs keys are suppressed. This map overshadows
  74. vip-insert-basic-map. Not recommended, except for novice users.")
  75.  
  76. (defvar  vip-insert-kbd-map  (make-sparse-keymap)
  77.   "This keymap keeps VI-style kbd macros for insert mode.")
  78.  
  79. (defvar vip-replace-map (make-sparse-keymap)
  80.   "Map used in Viper's replace state.")
  81.   
  82. (defvar vip-emacs-global-user-map (make-sparse-keymap)
  83.   "Auxiliary map for global user-defined bindings in Emacs state.")
  84.  
  85. (defvar  vip-emacs-kbd-map  (make-sparse-keymap)
  86.   "This keymap keeps Vi-style kbd macros for emacs mode.")
  87.   
  88. (vip-deflocalvar vip-emacs-local-user-map  (make-sparse-keymap)
  89.   "Auxiliary map for local user-defined bindings in Emacs state.")
  90. (put 'vip-emacs-local-user-map 'permanent-local t)  
  91.  
  92. ;; This keymap should stay empty
  93. (defvar vip-empty-keymap (make-sparse-keymap))
  94.  
  95. ;; This was the main Vi mode in old versions of VIP which may have been
  96. ;; extensively used by VIP users. We declare it as a global var
  97. ;; and, after .vip is loaded, we add this keymap to vip-vi-basic-map.
  98. (defvar vip-mode-map (make-sparse-keymap))
  99.  
  100.  
  101. ;;; Variables used by minor modes
  102.  
  103. ;; Association list of the form 
  104. ;; ((major-mode . keymap) (major-mode . keymap) ...)
  105. ;; Viper uses these keymaps to make user-requested adjustments
  106. ;; to its Vi state in various major modes.")
  107. (defvar vip-vi-state-modifier-alist nil)
  108.  
  109. ;; Association list of the form 
  110. ;; ((major-mode . keymap) (major-mode . keymap) ...)
  111. ;; Viper uses these keymaps to make user-requested adjustments
  112. ;; to its Insert state in various major modes.")
  113. (defvar vip-insert-state-modifier-alist nil)
  114.  
  115. ;; Association list of the form 
  116. ;; ((major-mode . keymap) (major-mode . keymap) ...)
  117. ;; Viper uses these keymaps to make user-requested adjustments
  118. ;; to its Emacs state in various major modes.
  119. (defvar vip-emacs-state-modifier-alist nil)
  120.  
  121. ;; Tells vip-add-local-keys to create a new vip-vi-local-user-map for new
  122. ;; buffers. Not a user option.
  123. (vip-deflocalvar vip-need-new-vi-local-map t "")
  124. (put 'vip-need-new-vi-local-map  'permanent-local t)
  125.  
  126. ;; Tells vip-add-local-keys to create a new vip-insert-local-user-map for new
  127. ;; buffers. Not a user option.
  128. (vip-deflocalvar vip-need-new-insert-local-map t "")
  129. (put 'vip-need-new-insert-local-map  'permanent-local t)
  130.  
  131. ;; Tells vip-add-local-keys to create a new vip-emacs-local-user-map for new
  132. ;; buffers. Not a user option.
  133. (vip-deflocalvar vip-need-new-emacs-local-map t "")
  134. (put 'vip-need-new-emacs-local-map  'permanent-local t)
  135.  
  136.  
  137.  
  138. ;; Insert mode keymap
  139.  
  140. ;; for novice users, pretend you are the real vi.
  141. (define-key vip-insert-diehard-map "\t"   'vip-insert-tab)
  142. (define-key vip-insert-diehard-map "\C-a" 'self-insert-command)
  143. (define-key vip-insert-diehard-map "\C-b" 'self-insert-command)
  144. (define-key vip-insert-diehard-map "\C-c" 'vip-change-state-to-vi)
  145. (define-key vip-insert-diehard-map "\C-e" 'self-insert-command)
  146. (define-key vip-insert-diehard-map "\C-f" 'self-insert-command)
  147. (define-key vip-insert-diehard-map "\C-g" 'self-insert-command)
  148. (define-key vip-insert-diehard-map "\C-i" 'self-insert-command)
  149. (define-key vip-insert-diehard-map "\C-k" 'self-insert-command)
  150. (define-key vip-insert-diehard-map "\C-l" 'self-insert-command)
  151. (define-key vip-insert-diehard-map "\C-n" 'self-insert-command)
  152. (define-key vip-insert-diehard-map "\C-o" 'self-insert-command)
  153. (define-key vip-insert-diehard-map "\C-p" 'self-insert-command)
  154. (define-key vip-insert-diehard-map "\C-q" 'self-insert-command)
  155. (define-key vip-insert-diehard-map "\C-r" 'self-insert-command)
  156. (define-key vip-insert-diehard-map "\C-s" 'self-insert-command)
  157. (define-key vip-insert-diehard-map "\C-u" 'vip-erase-line)
  158. (define-key vip-insert-diehard-map "\C-x" 'self-insert-command)
  159. (define-key vip-insert-diehard-map "\C-y" 'self-insert-command)
  160. (define-key vip-insert-diehard-map "\C-z" 'self-insert-command)
  161. (define-key vip-insert-diehard-map "\C-]" 'self-insert-command)
  162. (define-key vip-insert-diehard-map "\C-_" 'self-insert-command)
  163.  
  164. (let ((i ?\ ))
  165.   (while (<= i ?~)
  166.     (define-key vip-insert-diehard-map (make-string 1 i) 'self-insert-command)
  167.     (setq i (1+ i))))
  168.  
  169. ;; Insert mode map when user wants emacs style
  170. (define-key vip-insert-basic-map "\C-d" 'vip-backward-indent)
  171. (define-key vip-insert-basic-map "\C-w" 'vip-delete-backward-word)
  172. (define-key vip-insert-basic-map "\C-t" 'vip-forward-indent)
  173. (define-key vip-insert-basic-map 
  174.   (if vip-xemacs-p [(shift tab)] [S-tab]) 'vip-insert-tab)
  175. (define-key vip-insert-basic-map "\C-v" 'quoted-insert)
  176. (define-key vip-insert-basic-map "\C-?" 'vip-del-backward-char-in-insert)
  177. (define-key vip-insert-basic-map "\C-c\M-p"
  178.   'vip-insert-prev-from-insertion-ring)
  179. (define-key vip-insert-basic-map "\C-c\M-n"
  180.   'vip-insert-next-from-insertion-ring)
  181.  
  182.  
  183. ;; Replace keymap
  184. (define-key vip-replace-map "\C-t" 'vip-forward-indent)
  185. (define-key vip-replace-map "\C-j" 'vip-replace-state-exit-cmd)
  186. (define-key vip-replace-map "\C-m" 'vip-replace-state-exit-cmd)
  187. (define-key vip-replace-map "\C-?" 'vip-del-backward-char-in-replace)
  188.  
  189.  
  190.  
  191. ;; Vi keymaps
  192.  
  193. (define-key vip-vi-basic-map "\C-^" 
  194.   (function (lambda () (interactive) (vip-ex "e#"))))
  195. (define-key vip-vi-basic-map "\C-b" 'vip-scroll-back)
  196. (define-key vip-vi-basic-map "\C-d" 'vip-scroll-up)
  197. (define-key vip-vi-basic-map "\C-e" 'vip-scroll-up-one)
  198. (define-key vip-vi-basic-map "\C-f" 'vip-scroll)
  199. (define-key vip-vi-basic-map "\C-m" 'vip-next-line-at-bol)
  200. (define-key vip-vi-basic-map "\C-u" 'vip-scroll-down)
  201. (define-key vip-vi-basic-map "\C-y" 'vip-scroll-down-one)
  202. (define-key vip-vi-basic-map "\C-s" 'vip-isearch-forward)
  203. (define-key vip-vi-basic-map "\C-r" 'vip-isearch-backward)
  204. ;(define-key vip-vi-basic-map "\C-\\" 'universal-argument)
  205. (define-key vip-vi-basic-map "\C-c/" 'vip-toggle-search-style)
  206. (define-key vip-vi-basic-map "\C-cg" 'vip-info-on-file)
  207.  
  208. (define-key vip-vi-basic-map "\C-c\M-p" 'vip-prev-destructive-command)
  209. (define-key vip-vi-basic-map "\C-c\M-n" 'vip-next-destructive-command)
  210.  
  211.  
  212. (define-key vip-vi-basic-map " " 'vip-forward-char)
  213. (define-key vip-vi-basic-map "!" 'vip-command-argument)
  214. (define-key vip-vi-basic-map "\"" 'vip-command-argument)
  215. (define-key vip-vi-basic-map "#" 'vip-command-argument)
  216. (define-key vip-vi-basic-map "$" 'vip-goto-eol)
  217. (define-key vip-vi-basic-map "%" 'vip-paren-match)
  218. (define-key vip-vi-basic-map "&"
  219.   (function (lambda () (interactive) (vip-ex "&"))))
  220. (define-key vip-vi-basic-map "'" 'vip-goto-mark-and-skip-white)
  221. (define-key vip-vi-basic-map "(" 'vip-backward-sentence)
  222. (define-key vip-vi-basic-map ")" 'vip-forward-sentence)
  223. (define-key vip-vi-basic-map "*" 'call-last-kbd-macro)
  224. (define-key vip-vi-basic-map "+" 'vip-next-line-at-bol)
  225. (define-key vip-vi-basic-map "," 'vip-repeat-find-opposite)
  226. (define-key vip-vi-basic-map "-" 'vip-previous-line-at-bol)
  227. (define-key vip-vi-basic-map "." 'vip-repeat)
  228. (define-key vip-vi-basic-map "/" 'vip-search-forward)
  229.  
  230. (define-key vip-vi-basic-map "0" 'vip-beginning-of-line)
  231. (define-key vip-vi-basic-map "1" 'vip-digit-argument)
  232. (define-key vip-vi-basic-map "2" 'vip-digit-argument)
  233. (define-key vip-vi-basic-map "3" 'vip-digit-argument)
  234. (define-key vip-vi-basic-map "4" 'vip-digit-argument)
  235. (define-key vip-vi-basic-map "5" 'vip-digit-argument)
  236. (define-key vip-vi-basic-map "6" 'vip-digit-argument)
  237. (define-key vip-vi-basic-map "7" 'vip-digit-argument)
  238. (define-key vip-vi-basic-map "8" 'vip-digit-argument)
  239. (define-key vip-vi-basic-map "9" 'vip-digit-argument)
  240.  
  241. (define-key vip-vi-basic-map ":" 'vip-ex)
  242. (define-key vip-vi-basic-map ";" 'vip-repeat-find)
  243. (define-key vip-vi-basic-map "<" 'vip-command-argument)
  244. (define-key vip-vi-basic-map "=" 'vip-command-argument)
  245. (define-key vip-vi-basic-map ">" 'vip-command-argument)
  246. (define-key vip-vi-basic-map "?" 'vip-search-backward)
  247. (define-key vip-vi-basic-map "@" 'vip-register-macro)
  248.  
  249. (define-key vip-vi-basic-map "A" 'vip-Append)
  250. (define-key vip-vi-basic-map "B" 'vip-backward-Word)
  251. (define-key vip-vi-basic-map "C" 'vip-change-to-eol)
  252. (define-key vip-vi-basic-map "D" 'vip-kill-line)
  253. (define-key vip-vi-basic-map "E" 'vip-end-of-Word)
  254. (define-key vip-vi-basic-map "F" 'vip-find-char-backward)
  255. (define-key vip-vi-basic-map "G" 'vip-goto-line)
  256. (define-key vip-vi-basic-map "H" 'vip-window-top)
  257. (define-key vip-vi-basic-map "I" 'vip-Insert)
  258. (define-key vip-vi-basic-map "J" 'vip-join-lines)
  259. (define-key vip-vi-basic-map "K" 'vip-nil)
  260. (define-key vip-vi-basic-map "L" 'vip-window-bottom)
  261. (define-key vip-vi-basic-map "M" 'vip-window-middle)
  262. (define-key vip-vi-basic-map "N" 'vip-search-Next)
  263. (define-key vip-vi-basic-map "O" 'vip-Open-line)
  264. (define-key vip-vi-basic-map "P" 'vip-Put-back)
  265. (define-key vip-vi-basic-map "Q" 'vip-query-replace)
  266. (define-key vip-vi-basic-map "R" 'vip-overwrite)
  267. (define-key vip-vi-basic-map "S" 'vip-substitute-line)
  268. (define-key vip-vi-basic-map "T" 'vip-goto-char-backward)
  269. (define-key vip-vi-basic-map "U" 'vip-undo)
  270. (define-key vip-vi-basic-map "V" 'find-file-other-window)
  271. (define-key vip-vi-basic-map "W" 'vip-forward-Word)
  272. (define-key vip-vi-basic-map "X" 'vip-delete-backward-char)
  273. (define-key vip-vi-basic-map "Y" 'vip-yank-line)
  274. (define-key vip-vi-basic-map "ZZ" 'vip-save-kill-buffer)
  275.  
  276. (define-key vip-vi-basic-map "\\" 'vip-escape-to-emacs)
  277. (define-key vip-vi-basic-map "[" 'vip-brac-function)
  278. (define-key vip-vi-basic-map "]" 'vip-ket-function)
  279. (define-key vip-vi-basic-map "_" 'vip-alternate-ESC)
  280. (define-key vip-vi-basic-map "^" 'vip-bol-and-skip-white)
  281. (define-key vip-vi-basic-map "`" 'vip-goto-mark)
  282.  
  283. (define-key vip-vi-basic-map "a" 'vip-append)
  284. (define-key vip-vi-basic-map "b" 'vip-backward-word)
  285. (define-key vip-vi-basic-map "c" 'vip-command-argument)
  286. (define-key vip-vi-basic-map "d" 'vip-command-argument)
  287. (define-key vip-vi-basic-map "e" 'vip-end-of-word)
  288. (define-key vip-vi-basic-map "f" 'vip-find-char-forward)
  289. (define-key vip-vi-basic-map "g" 'vip-nil)
  290. (define-key vip-vi-basic-map "h" 'vip-backward-char)
  291. (define-key vip-vi-basic-map "i" 'vip-insert)
  292. (define-key vip-vi-basic-map "j" 'vip-next-line)
  293. (define-key vip-vi-basic-map "k" 'vip-previous-line)
  294. (define-key vip-vi-basic-map "l" 'vip-forward-char)
  295. (define-key vip-vi-basic-map "m" 'vip-mark-point)
  296. (define-key vip-vi-basic-map "n" 'vip-search-next)
  297. (define-key vip-vi-basic-map "o" 'vip-open-line)
  298. (define-key vip-vi-basic-map "p" 'vip-put-back)
  299. (define-key vip-vi-basic-map "q" 'vip-nil)
  300. (define-key vip-vi-basic-map "r" 'vip-replace-char)
  301. (define-key vip-vi-basic-map "s" 'vip-substitute)
  302. (define-key vip-vi-basic-map "t" 'vip-goto-char-forward)
  303. (define-key vip-vi-basic-map "u" 'vip-undo)
  304. (define-key vip-vi-basic-map "v" 'find-file)
  305. (define-key vip-vi-basic-map "\C-v" 'find-file-other-frame)
  306. (define-key vip-vi-basic-map "w" 'vip-forward-word)
  307. (define-key vip-vi-basic-map "x" 'vip-delete-char)
  308. (define-key vip-vi-basic-map "y" 'vip-command-argument)
  309. (define-key vip-vi-basic-map "zH" 'vip-line-to-top)
  310. (define-key vip-vi-basic-map "zM" 'vip-line-to-middle)
  311. (define-key vip-vi-basic-map "zL" 'vip-line-to-bottom)
  312. (define-key vip-vi-basic-map "z\C-m" 'vip-line-to-top)
  313. (define-key vip-vi-basic-map "z." 'vip-line-to-middle)
  314. (define-key vip-vi-basic-map "z-" 'vip-line-to-bottom)
  315.  
  316. (define-key vip-vi-basic-map "{" 'vip-backward-paragraph)
  317. (define-key vip-vi-basic-map "|" 'vip-goto-col)
  318. (define-key vip-vi-basic-map "}" 'vip-forward-paragraph)
  319. (define-key vip-vi-basic-map "~" 'vip-toggle-case)
  320. (define-key vip-vi-basic-map "\C-?" 'vip-backward-char)
  321.   
  322. ;;; Escape from Emacs to Vi for one command
  323. (global-set-key "\M-\C-z" 'vip-escape-to-vi)  ;; in emacs-state
  324.  
  325. ;;; This is vip-vi-diehard-map. Used when vip-vi-diehard-minor-mode is on.
  326.  
  327. (define-key vip-vi-diehard-map "\C-a" 'vip-nil)
  328. (define-key vip-vi-diehard-map "\C-c" 'vip-nil)
  329. (define-key vip-vi-diehard-map "\C-g" 'vip-info-on-file)
  330. (define-key vip-vi-diehard-map "\C-i" 'vip-nil)
  331. (define-key vip-vi-diehard-map "\C-k" 'vip-nil)
  332. (define-key vip-vi-diehard-map "\C-l" 'redraw-display)
  333. (define-key vip-vi-diehard-map "\C-n" 'vip-next-line)
  334. (define-key vip-vi-diehard-map "\C-o" 'vip-nil)
  335. (define-key vip-vi-diehard-map "\C-p" 'vip-previous-line)
  336. (define-key vip-vi-diehard-map "\C-q" 'vip-nil)
  337. (define-key vip-vi-diehard-map "\C-r" 'redraw-display)
  338. (define-key vip-vi-diehard-map "\C-s" 'vip-nil)
  339. (define-key vip-vi-diehard-map "\C-t" 'vip-nil)
  340. (define-key vip-vi-diehard-map "\C-v" 'vip-nil)
  341. (define-key vip-vi-diehard-map "\C-w" 'vip-nil)
  342. (define-key vip-vi-diehard-map "@" 'vip-nil)
  343. (define-key vip-vi-diehard-map "*" 'vip-nil)
  344. (define-key vip-vi-diehard-map "#" 'vip-nil)
  345. (define-key vip-vi-diehard-map "\C-_" 'vip-nil)
  346. (define-key vip-vi-diehard-map "\C-]" 'vip-nil);; This is actually tags.
  347.  
  348.  
  349. ;;; Minibuffer keymap
  350.   
  351.  
  352. (defvar vip-minibuffer-map (make-sparse-keymap)
  353.   "Keymap used to modify keys when Minibuffer is in Insert state.")
  354.   
  355. (define-key vip-minibuffer-map "\C-m" 'vip-exit-minibuffer)
  356. (define-key vip-minibuffer-map "\C-j" 'vip-exit-minibuffer)
  357.  
  358. ;; Map used to read Ex-style commands.
  359. (defvar vip-ex-cmd-map (make-sparse-keymap))
  360. (define-key vip-ex-cmd-map " "  'ex-cmd-read-exit)
  361. (define-key vip-ex-cmd-map "\t" 'ex-cmd-complete)
  362.  
  363. ;; Keymap for reading file names in Ex-style commands.
  364. (defvar ex-read-filename-map (make-sparse-keymap))
  365. (define-key ex-read-filename-map " " 'vip-complete-filename-or-exit)
  366.  
  367.  
  368.       
  369.  
  370. ;;; Code
  371.  
  372. (defun vip-add-local-keys (state alist)
  373.   "Override some vi-state or insert-state bindings in the current buffer.
  374. The effect is seen in the current buffer only.
  375. Useful for customizing  mailer buffers, gnus, etc.
  376. STATE is 'vi-state, 'insert-state, or 'emacs-state
  377. ALIST is of the form ((key . func) (key . func) ...)
  378. Normally, this would be called from a hook to a major mode or
  379. on a per buffer basis.
  380. Usage:
  381.       (vip-add-local-keys state '((key-str . func) (key-str . func)...))   "
  382.       
  383.   (let (map)
  384.     (cond ((eq state 'vi-state)
  385.        (if vip-need-new-vi-local-map
  386.            (setq vip-vi-local-user-map (make-sparse-keymap)))
  387.        (setq vip-need-new-vi-local-map nil
  388.          map vip-vi-local-user-map))
  389.       ((eq state 'insert-state)
  390.        (if vip-need-new-insert-local-map
  391.            (setq vip-insert-local-user-map (make-sparse-keymap)))
  392.        (setq vip-need-new-insert-local-map nil
  393.          map vip-insert-local-user-map))
  394.       ((eq state 'emacs-state)
  395.        (if vip-need-new-emacs-local-map
  396.            (setq vip-emacs-local-user-map (make-sparse-keymap)))
  397.        (setq vip-need-new-emacs-local-map nil
  398.          map vip-emacs-local-user-map))
  399.       (t 
  400.        (error
  401.         "Invalid state in vip-add-local-keys: %S. Valid states: vi-state, insert-state or emacs-state" state)))
  402.  
  403.     (vip-modify-keymap map alist)
  404.     (vip-normalize-minor-mode-map-alist)
  405.     (vip-set-mode-vars-for vip-current-state)))
  406.     
  407.  
  408. (defun vip-modify-major-mode (mode state keymap)
  409.   "Modify key bindings in a major-mode in a Viper state using a keymap.
  410.  
  411. If the default for a major mode is emacs-state, then modifications to this
  412. major mode may not take effect until the buffer switches state to Vi,
  413. Insert or Emacs. If this happens, add vip-change-state-to-emacs to this
  414. major mode's hook. If no such hook exists, you may have to put an advice on
  415. the function that invokes the major mode. See vip-set-hooks for hints.
  416.  
  417. The above needs not to be done for major modes that come up in Vi or Insert
  418. state by default.
  419.  
  420. Arguments: (major-mode vip-state keymap)"
  421.   (let ((alist
  422.      (cond ((eq state 'vi-state) 'vip-vi-state-modifier-alist)
  423.            ((eq state 'insert-state) 'vip-insert-state-modifier-alist)
  424.            ((eq state 'emacs-state) 'vip-emacs-state-modifier-alist)))
  425.     elt)
  426.     (if (setq elt (assoc mode (eval alist)))
  427.     (set alist (delq elt (eval alist))))
  428.     (set alist (cons (cons mode keymap) (eval alist)))
  429.     
  430.     ;; Normalization usually doesn't help here, since one needs to
  431.     ;; normalize in the actual buffer where changes to the keymap are
  432.     ;; to take place. However, it doesn't hurt, and it helps whenever this
  433.     ;; function is actually called from within the right buffer.
  434.     (vip-normalize-minor-mode-map-alist)
  435.     
  436.     (vip-set-mode-vars-for vip-current-state)))
  437.  
  438.     
  439. ;; Displays variables that control Viper's keymaps
  440. (defun vip-debug-keymaps ()
  441.   (interactive)
  442.   (with-output-to-temp-buffer " *vip-debug*"
  443.     (princ (format "Buffer name:  %s\n\n" (buffer-name)))
  444.     (princ "Variables:  \n")
  445.     (princ (format "major-mode:  %S\n" major-mode))
  446.     (princ (format "vip-current-state:  %S\n" vip-current-state))
  447.     (princ (format "vip-mode-string:  %S\n\n" vip-mode-string))
  448.     (princ (format "vip-vi-intercept-minor-mode:  %S\n"
  449.            vip-vi-intercept-minor-mode))
  450.     (princ (format "vip-insert-intercept-minor-mode:  %S\n"
  451.            vip-insert-intercept-minor-mode))
  452.     (princ (format "vip-emacs-intercept-minor-mode:  %S\n"
  453.            vip-emacs-intercept-minor-mode))
  454.     (princ (format "vip-vi-minibuffer-minor-mode:  %S\n"
  455.            vip-vi-minibuffer-minor-mode))
  456.     (princ (format "vip-insert-minibuffer-minor-mode:  %S\n\n"
  457.            vip-insert-minibuffer-minor-mode))
  458.     (princ (format "vip-vi-local-user-minor-mode:  %S\n"
  459.            vip-vi-local-user-minor-mode))
  460.     (princ (format "vip-vi-global-user-minor-mode:  %S\n"
  461.            vip-vi-global-user-minor-mode))
  462.     (princ (format "vip-vi-kbd-minor-mode:  %S\n" vip-vi-kbd-minor-mode))
  463.     (princ (format "vip-vi-state-modifier-minor-mode:  %S\n"
  464.            vip-vi-state-modifier-minor-mode))
  465.     (princ (format "vip-vi-diehard-minor-mode:  %S\n"
  466.            vip-vi-diehard-minor-mode))
  467.     (princ (format "vip-vi-basic-minor-mode:  %S\n" vip-vi-basic-minor-mode))
  468.     (princ (format "vip-replace-minor-mode:  %S\n" vip-replace-minor-mode))
  469.     (princ (format "vip-insert-local-user-minor-mode:  %S\n"
  470.            vip-insert-local-user-minor-mode))
  471.     (princ (format "vip-insert-global-user-minor-mode:  %S\n"
  472.            vip-insert-global-user-minor-mode))
  473.     (princ (format "vip-insert-kbd-minor-mode:  %S\n"
  474.            vip-insert-kbd-minor-mode)) 
  475.     (princ (format "vip-insert-state-modifier-minor-mode:  %S\n"
  476.            vip-insert-state-modifier-minor-mode))
  477.     (princ (format "vip-insert-diehard-minor-mode:  %S\n"
  478.            vip-insert-diehard-minor-mode))
  479.     (princ (format "vip-insert-basic-minor-mode:  %S\n"
  480.            vip-insert-basic-minor-mode))
  481.     (princ (format "vip-emacs-local-user-minor-mode:  %S\n"
  482.            vip-emacs-local-user-minor-mode))
  483.     (princ (format "vip-emacs-kbd-minor-mode:  %S\n"
  484.            vip-emacs-kbd-minor-mode))
  485.     (princ (format "vip-emacs-global-user-minor-mode:  %S\n"
  486.            vip-emacs-global-user-minor-mode))
  487.     (princ (format "vip-emacs-state-modifier-minor-mode:  %S\n"
  488.            vip-emacs-state-modifier-minor-mode))
  489.     
  490.     (princ (format "\nvip-expert-level  %S\n" vip-expert-level))
  491.     (princ (format "vip-no-multiple-ESC  %S\n" vip-no-multiple-ESC))
  492.     (princ (format "vip-always  %S\n" vip-always))
  493.     (princ (format "vip-ex-style-motion  %S\n"
  494.            vip-ex-style-motion))
  495.     (princ (format "vip-ex-style-editing-in-insert  %S\n"
  496.            vip-ex-style-editing-in-insert))
  497.     (princ (format "vip-want-emacs-keys-in-vi  %S\n"
  498.            vip-want-emacs-keys-in-vi)) 
  499.     (princ (format "vip-want-emacs-keys-in-insert  %S\n"
  500.            vip-want-emacs-keys-in-insert)) 
  501.     (princ (format "vip-want-ctl-h-help  %S\n" vip-want-ctl-h-help))
  502.     
  503.     (princ "\n\n\n")
  504.     (princ (format "Default value for minor-mode-map-alist:  \n%S\n\n"
  505.            (default-value 'minor-mode-map-alist)))
  506.     (princ (format "Actual value for minor-mode-map-alist:  \n%S\n"
  507.            minor-mode-map-alist))
  508.     ))
  509.    
  510.  
  511. ;;; Keymap utils
  512.          
  513. (defun vip-add-keymap (mapsrc mapdst) 
  514.   "Add contents of mapsrc to mapdst. It is assumed that mapsrc is sparse."
  515.   (if vip-xemacs-p
  516.       (map-keymap (function (lambda (key binding)
  517.                   (define-key mapdst key binding)))
  518.           mapsrc)
  519.     (mapcar 
  520.      (function (lambda (p) 
  521.          (define-key mapdst (vector (car p)) (cdr p))
  522.          ))
  523.      (cdr mapsrc))))
  524.   
  525. (defun vip-modify-keymap (map alist)
  526.    "Modifies MAP with bindings specified in the ALIST. The alist has the
  527. form ((key . function) (key . function) ... )."
  528.    (mapcar (function (lambda (p)
  529.                (define-key map (eval (car p)) (cdr p)))) 
  530.        alist))
  531.  
  532.  
  533. (provide 'viper-keym)
  534.  
  535. ;;;  viper-keym.el ends here
  536.